home *** CD-ROM | disk | FTP | other *** search
/ Gold Medal Software 4 / Gold Medal Software - Volume 4 (Gold Medal) (1994).iso / os2 / excal.arj / README.TXT < prev   
Text File  |  1994-04-04  |  2KB  |  61 lines

  1.                      EXCAL, THE WORKPLACE CALENDAR
  2.  
  3. INSTALLING EXCAL ON YOUR SYSTEM FOR THE FIRST TIME:
  4.  
  5. 1. Copy the EXCAL.DLL to C:\OS2\DLL, or another path listed in
  6.    the LIBPATH statement in your CONFIG.SYS.
  7.  
  8. 2. Copy the EXCAL.HLP to C:\OS2\HELP, or another path listed in
  9.    the HELP environment variable in your CONFIG.SYS.
  10.  
  11. 3. Run EXCINST.EXE to register the EXCAL.DLL and create an instance
  12.    of ExCal.  EXCINST.EXE will prompt for the path you
  13.    copied the EXCAL.DLL.
  14.  
  15. INSTALLING EXCAL ON YOUR SYSTEM FOR THE FIRST TIME *WITHOUT PROMPTING*:
  16.  
  17.    EXCINST path                   Where 'path' is where EXCAL.DLL
  18.                                   was copied.
  19.        -- or --
  20.  
  21.    EXCINST /USELIBPATH            If you copied EXCAL.DLL to a path
  22.                                   on your LIBPATH.
  23.  
  24.    A progress dialog is displayed during installation.
  25.  
  26. ALSO INCLUDE IN THIS PACKAGE:
  27.  
  28.   EXCAL.CMD is the REXX equivalent of the installation utility 
  29.   EXCINST.EXE.  It shows how the REXX API can be used to create and 
  30.   modify ExCal objects.  
  31.  
  32.   Online help is available from any of the ExCal objects (calendar, event,
  33.   time, place), or by running VIEW EXCAL.INF.
  34.  
  35. UPGRADING TO NEW VERSIONS OF THE EXCAL:
  36.  
  37. To upgrade, the EXCAL.DLL must be replaced.  But typically it is
  38. "in use" by the system.  Here's two ways it can be replaced:
  39.  
  40. 1. Add the line below:
  41.  
  42.      CALL=C:\OS2\CMD.EXE
  43.  
  44.    to the top of your CONFIG.SYS file and reboot.  A full screen
  45.    session will be started before the Workplace Shell is started.  Copy
  46.    the new EXCAL.DLL over the old and then EXIT to continue booting.
  47.    Remember to remove (or comment out using REM) the line above in your
  48.    CONFIG.SYS.
  49.  
  50. 2. Or, another way:
  51.  
  52.    a. Rename the new EXCAL.DLL file to EXCAL.LLD (for downloading).
  53.    b. Add the following lines to STARTUP.CMD, replacing 'x:\dir?'
  54.       with the path you downloaded EXCAL.DLL (EXCAL.LLD) to:
  55.  
  56.       rem Allows replacing of EXCAL.DLL during boot
  57.       IF NOT EXIST x:\dir?\EXCAL.LLD GOTO SKIPEXCAL
  58.       DEL x:\dir?\EXCAL.DLL
  59.       REN x:\dir?\EXCAL.LLD *.DLL
  60.       :SKIPEXCAL
  61.